home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Compilers / Miracle C Compiler / miricleC compiler.msi / Instal01.cab / _CADA9E511B524EDA93378159019EB5A3 < prev    next >
Encoding:
Text File  |  2001-08-02  |  460 b   |  16 lines

  1. struct REGS
  2.    {
  3.    unsigned int ax, bx, cx, dx, si, di, cf;
  4.    };
  5.  
  6. void int86(unsigned int i, struct REGS *rx, struct REGS *ry);
  7. void clrscr(), gotoxy(int x, int y);
  8.  
  9. unsigned int inp(unsigned int port), inpw(unsigned int port);
  10. void outp(unsigned int port, unsigned int n), outpw(unsigned int port, unsigned int n);
  11.  
  12.  
  13. int bios_serial(unsigned port, unsigned service, unsigned data);
  14. unsigned long bios_clock();
  15. int kbhit(), getch(), getche();
  16.